//
// Copyright (c) 2009 All Right Reserved
//
// vl
//
// 2009-01-01
// Contains ...
using JetBrains.Annotations;
namespace LargoCommon.Music
{
/// General type of line.
public enum MusicalLineType {
/// Type of line.
None = 0,
/// Type of line.
[UsedImplicitly] Empty = 1,
/// Type of line.
Rhythmic = 2,
/// Type of line.
Melodic = 3,
/// Type of line.
Harmonic = 4
}
}